home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 3
/
Gold Medal Software - Volume 3 (Gold Medal) (1994).iso
/
windows
/
editprog
/
db4pk1.arj
/
FRMPACKT.FRM
< prev
next >
Wrap
Text File
|
1994-02-10
|
2KB
|
76 lines
VERSION 2.00
Begin Form frmPackTable
Caption = "Pack A dBASE IV Table"
ClientHeight = 3792
ClientLeft = 2820
ClientTop = 2520
ClientWidth = 6072
Height = 4212
Left = 2772
LinkTopic = "Form1"
ScaleHeight = 3792
ScaleWidth = 6072
Top = 2148
Width = 6168
Begin CommandButton cmdQuit
Caption = "&Quit"
Height = 612
Left = 3180
TabIndex = 3
Top = 2460
Width = 1452
End
Begin CommandButton cmdPack
Caption = "&Pack"
Height = 612
Left = 1560
TabIndex = 2
Top = 2460
Width = 1392
End
Begin TextBox txtTable
Height = 432
Left = 2460
TabIndex = 1
Top = 1680
Width = 2952
End
Begin TextBox txtDatabase
Height = 432
Left = 2460
TabIndex = 0
Top = 1080
Width = 2952
End
Begin Label lblTable
Caption = "Table:"
Height = 432
Left = 780
TabIndex = 5
Top = 1680
Width = 1572
End
Begin Label lblDatabase
Caption = "Database:"
Height = 432
Left = 780
TabIndex = 4
Top = 1080
Width = 1572
End
End
'Pack the table.
Sub cmdPack_Click ()
Dim sDatabase As String
Dim sTable As String
sDatabase = txtDatabase.Text
sTable = txtTable.Text
Call PackTable(sDatabase, sTable)
End Sub
Sub cmdQuit_Click ()
End
End Sub